*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #1F211E;
    color: fff;
    align-items: center;
    justify-content: center;
}

#Header{
    width: 100%;
    height: 60px;
    background-color: #0076a8;
}

.Container{
    padding: 10px 10%;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Logo a:visited{
    text-decoration: none;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: #F2F2F0;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after{
    content: '';
    width: 0%;
    height: 3px;
    background: #182638;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after{
    width: 100%;
}

/*-----Main-----*/

main{
    padding: 10px;
    min-height: 100vh;
    width: 60vw;
    margin: 0 auto;
}

.VideoTrailer{
    width: 500px;
    height: auto;
}

nav{
    width: 60vw;
    height: 100%;
    margin: 0 auto;
}

ul{
    display: flex;
    list-style: none;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
}

li{
    width: 100%;
    height: 100%;
}

.active{
    background-color: #F2F2F0;
}

li > a{
    height: 100%;
    width: 100%;
    display: block;
    text-align: center;
    line-height: 60px;
    text-decoration: none;
    color: #F2F2F0;
}

h1{
    font-size:250%;
    margin-bottom: 20px;
    border-bottom: 1px solid #F2F2F0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F2F2F0;
}

.figcaptionC{
    color: #F2F2F0;
}

section{
    width: 100%;
    padding: 40px;
}

article{
    width: 100%;
    margin: 0 auto;
    padding: 40px;
}

.box{
    width: 100%;
    height: 400px;
    position: relative;
    padding: 0;
    margin-bottom: 40px;
}

.box > a > figure{
    width: 100%;
    height: 100%;
}

.box > a > figure > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.box > a > figure > img:hover{
    transform: none;
}

.box > a > section{
    position: absolute;
    bottom: 0%;
    left: 0%;
    padding: 40px;
    color: #F2F2F0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent,80%,black);
    border-radius: 50px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

figure{
    margin-bottom: 40px;
}

img{
    width:100%;
    border-radius: 5px;
    transition: 0.2s transform;
}

.container{
    padding: 10px;
    display: flex;
    align-items: center;
}

.img-col{
    flex-basis: 100%;
    color: #F2F2F0;
}

.imgPJ{
    max-width: 100%;
}

.imgPJT{
    max-width: 100%;
    display: inline-block;
}

.SLIMG{
    width: 50%;
    height: auto;
}

.text-col{
    padding-left: 5px;
    color: #F2F2F0;
}

img:hover{
    transform: scale(1.05);
}

h2{
    margin-bottom: 10px;
    border-bottom: 1px solid #F2F2F0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F2F2F0;
}

p{
    margin-bottom: 40px;
    color: #F2F2F0;
    align-items: center;
    justify-content: center;
}

.fa-github-square{
    color: #F2F2F0;
}

.flexP{
    display: flex;
}

.BAMbg{
    background-color: #6CC5D9;
}

p:last-of-type{
    margin-bottom: 0;
}

figcaption{
    font-size: 80%;
    font-style: italic;
    font-weight: 400;
}

audio{
    display: block;
    margin-top: 20px;
}

video{
    width: 100%;
    margin-bottom: 40px;
    border-radius: 5px;
}

.Top{
    width: 80px;
    height: 80px;
    background: #0076a8;
    border: 4px solid #F2F2F0;
    font-size: 150%;
    font-family: 'Open Sans', sans-serif;
    border-radius: 5px;
    color: #1F211E;
    position: fixed;
    bottom: 120px;
    right: 100px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer{
    align-items: center;
}

footer > p{
    width:60vw;
    margin: 0 auto;
    padding-left: 80px;
}

@media screen and (max-width:1000px) {
    main{
        width: 80vw;
    }
    footer > p{
        width: 80vw;
    }
    img:hover{
        transform: none;
    }

    .Top{
        width: 60px;
        height: 60px;
        bottom: 60px;
        right: 60px;
    }

    header{
        height: auto;
    }

    nav{
        width: 100%;
    }

    ul{
        display: block;
    }
}

@media screen and (max-width: 600px){
    body{
        font-size: 16px;
    }
    main{
        width:100vw;
        padding: 20px;
    }
    h1{
        font-size: 180%;
    }
    footer > p{
        width: 100vw;
        padding-left: 60px;
    }
}

footer{
    width: 100%;
    text-align: center;
    padding: 15px 0;
    color: #F2F2F0;
    background: #0076a8;
    font-weight: 300;
    margin-top: 20px;
}

footer p{
    color: #F2F2F0;
}

.CopyRight{
    color: #F2F2F0;
    font-size: 14px;
}